data manipulation

All posts tagged data manipulation by Linux Bash
  • Posted on
    Featured Image
    AWK is a versatile programming language designed for text processing and data extraction. It is especially powerful when working with structured text like CSV, logs, or delimited data streams. AWK is a part of the standard Linux toolset and is typically pre-installed on most distributions. However, understanding how to verify its presence and install it where missing is key to ensuring your system is ready for text processing tasks. In this article, we'll explore the basics of AWK, demonstrate some simple text processing examples, and provide installation instructions across different Linux package managers, including apt, dnf, and zypper.
  • Posted on
    Featured Image
    In the realm of configuration management and development, YAML has become increasingly popular due to its simplicity and readability. However, dealing with YAML files can sometimes be cumbersome, especially from the command line. This is where yq comes into play, a lightweight and portable command-line YAML processor which is inspired by jq - the JSON processor. yq is a command-line tool that allows you to read, write, and manipulate YAML files easily. It comes in handy for extracting data, manipulating structures, converting formats, and more—all directly from the terminal or in scripts. Why Use yq? Simplicity: yq uses a succinct syntax which is easy to write and understand.
  • Posted on
    Featured Image
    In the vast realm of IT and software development, working with JSON (JavaScript Object Notation) has become commonplace due to its simplicity and ease of use as a data interchange format. Whether you're a system administrator, a DevOps engineer, or a developer, chances are you frequently need to parse, analyze, or manipulate JSON data. One of the most powerful tools for handling JSON in the Linux environment is jq. This lightweight and flexible command-line JSON processor allows you to slice, filter, map, and transform structured data with the same ease as sed, awk, grep, and friends let you play with text.
  • Posted on
    Featured Image
    In the world of Bash scripting, handling text data is quite straightforward and well-documented. However, when it comes to handling binary data, the tools and techniques required can be somewhat different and not as widely understood. In this detailed guide, we’ll explore various methods and tools you can utilize to effectively handle binary data within Bash scripts. Whether you are on Debian, Fedora, or openSUSE, we've got you covered. Binary data refers to any data that is stored in binary format. Unlike text data, which is typically human-readable, binary data can include any type of data encoded in binary form, such as images, executable files or custom binary formats.